home *** CD-ROM | disk | FTP | other *** search
/ JCSM Shareware Collection 1993 November / JCSM Shareware Collection - 1993-11.iso / cl720 / qbnws31j.lzh / VZKEYBRD.BAS < prev    next >
BASIC Source File  |  1991-12-01  |  3KB  |  75 lines

  1. '-----------------------------------------------------------------------+
  2. '                                                                       |
  3. '       MODULENAME  :   VZKEYBRD.BAS                                    |
  4. '                                                                       |
  5. '       DESCRIPTION :   include module                                  |
  6. '                       keyboardscan- & ascii codes                     |
  7. '                                                                       |
  8. '       REV   DATE      HISTORY                                         |
  9. '       0.0   11SEP91   First version                                   |
  10. '                                                                       |
  11. '-----------------------------------------------------------------------+
  12. '  ALL PROGRAMMING MATERIAL IS PROPERTY OF VZ-SYSTEMS (c) NETHERLANDS   |
  13. '-----------------------------------------------------------------------+
  14.  
  15. '       keyboardscancodes
  16.  
  17. CONST Null = 0          'null character
  18. CONST CurR = 28         'cursor right
  19. CONST CurL = 29         'cursor left
  20. CONST CurH = 71         '0 + cursor home
  21. CONST ArrU = 72         '0 + arrow up
  22. CONST PgUp = 73         '0 + page up
  23. CONST ArrL = 75         '0 + arrow left
  24. CONST ArrR = 77         '0 + arrow right
  25. CONST CurE = 79         '0 + cursor end
  26. CONST ArrD = 80         '0 + arrow down
  27. CONST PgDn = 81         '0 + page down
  28. CONST CtlL = 115        '0 + control + cursor left
  29. CONST CtlR = 116        '0 + control + cursor right
  30. CONST CtlE = 117        '0 + control + cursor end
  31. CONST CtlH = 119        '0 + control + cursor home
  32.  
  33. '       ascii charactercodes
  34.  
  35. CONST Bell = 7          'same as beep
  36. CONST BkSp = 8          'backspace
  37. CONST HTab = 9          'horizontal tab
  38. CONST LinF = 10         'linefeed
  39. CONST Skip = 12         'formfeed
  40. CONST Entr = 13         'enter/return
  41. CONST CtlO = 15         '^O - control + O
  42. CONST CtlQ = 17         '^Q - control + Q
  43. CONST CtlW = 23         '^W - control + W
  44. CONST Escp = 27         'escape
  45. CONST Tild = 126        'tilde (~)
  46.  
  47. '       graphics characters (D = double line)
  48.  
  49. CONST DCTL = 201        'corner top left
  50. CONST DCTR = 187        'corner top right
  51. CONST DCBL = 200        'corner bottom left
  52. CONST DCBR = 188        'corner bottom right
  53. CONST DLHo = 205        'line horizontal
  54. CONST DLVe = 186        'line vertical
  55. CONST DTLt = 185        't left
  56. CONST DTRt = 204        't right
  57. CONST DTTo = 202        't top
  58. CONST DTBo = 203        't bottom
  59. CONST DCrs = 205        'cross
  60.  
  61. '       graphics characters (S = single line)
  62.  
  63. CONST SCTL = 218      'corner top left
  64. CONST SCTR = 191      'corner top right
  65. CONST SCBL = 192      'corner bottom left
  66. CONST SCBR = 217      'corner bottom right
  67. CONST SLHo = 196      'line horizontal
  68. CONST SLVe = 179      'line vertical
  69. CONST STLt = 180      't left
  70. CONST STRt = 195      't right
  71. CONST STTo = 193      't top
  72. CONST STBo = 194      't bottom
  73. CONST SCrs = 197      'cross
  74.  
  75.